home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib9 / v_11_02 / 1102012a < prev    next >
Text File  |  1995-11-01  |  172b  |  9 lines

  1. /* gmtime function */
  2. #include "xtime.h"
  3.  
  4. struct tm *(gmtime)(const time_t *tod)
  5.     {    /* convert to Greenwich Mean Time (UTC) */
  6.     return (_Ttotm(NULL, *tod, 0));
  7.     }
  8.  
  9.